;cancel the assigns in case of installation restart
(makeassign "AEinstpgm" (safe))
(makeassign "BMEinstpgm" (safe))
;get the dest dir for Art Expression
(set ae_dest
(tackon
(askdir
(prompt "In which disk or drawer should ArtExpression be installed?")
(help @askdir-help)
(default @default-dest)
)
"ArtExpression"
)
)
;lock on to volume 'AEprogram'
(askdisk
(prompt "Please insert the disk labeled \"AEprogram\" into any drive")
(help "\n\n\n\nThe ArtExpression program and related files will be copied from the "
"\"AEprogram\" disk onto your system.")
(dest "AEprogram")
(newname "AEinstpgm")
)
(complete 10)
;We now have a valid destination, so tell Installer where AE will end up
;so the exit page will be correct.
(set @default-dest ae_dest)
;copy program files from source to dest
(if
(askbool
(prompt "\n\n\n\n\nDo you want to copy the ArtExpression program?")
(help "\n\n\n\nClicking 'Copy' will copy the ArtExpression program file to your disk. Clicking 'Do Not Copy' will skip to the next section of the installer.")
(choices "Copy" "Do Not Copy")
(default 1)
)
(copyfiles
(source "AEinstpgm:ArtExpression")
(dest ae_dest)
(infos)
)
)
;copy support files from source to dest
(if
(askbool
(prompt "\n\n\n\n\nDo you wish to copy the ArtExpression support files?")
(help "\n\n\n\nClicking 'Copy' will copy the other files necessary to use ArtExpression to your disk.")